home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
s
/
ep_autodir-toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
208b
|
16 lines
/* EaglePlayer - toggles AutoDir */
address 'rexx_EP'
options results
status G aud
if result == "no" then do
AutoDir yes
say "AutoDir is now on !"
end
else do
AutoDir no
say "AutoDir is now off !"
end